home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / unix / textmstr.shr / tm.hqx / Source Code ƒ / TextMaster Code / tm.h < prev   
Text File  |  1991-05-09  |  873b  |  19 lines

  1. /***************************************************************************
  2.  **                                                                       **
  3.  **                      Special defines for MACIFY                       **
  4.  **                                                                       **
  5.  ***************************************************************************/
  6.  
  7. /* Defines for the charcters we'll be converting */
  8. #define         UNIX_EOL        0x0a    /* UNIX end-of-line character */
  9. #define         MAC_EOL         '\n'    /* Mac end-of-line character */
  10.  
  11. /* Define for bell character (to be used when file is done) */
  12. #define            BELL            0x07    /* bell character (Ctrl-G) */
  13.  
  14. /* Defines for what functions we'll be doing */
  15. #define            UNIX_TO_MAC        1        /* UNIX -> Macintosh xfers */
  16. #define            MAC_TO_UNIX        2        /* Mac -> UNIX xfers */
  17.  
  18. /* That's it! */
  19.